-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add datagrams.createWritable() #620
base: main
Are you sure you want to change the base?
Conversation
Meeting:
|
9e88485
to
db89b5f
Compare
This needs a bit more surgery to the algorithms. Will ping folks for review when that's done. |
It would be useful to add an Example to section 14 showing the use of datagrams.createWriteable(), perhaps juxtaposed against the default writeable, to show that both can be used simultaneously. |
readonly attribute ReadableStream readable; | ||
readonly attribute WritableStream writable; | ||
readonly attribute WebTransportDatagramsWritable writable; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's confusing to have both CreateWritable()
and writable
. If we call createWritable()
two times and then access writable
, do we get the WritableStream from the first createWritable()
call or a third instance of a WritableStream?
Partial fix for #610.
Preview | Diff